home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / lang / python_src.lha / amigapython / testsprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-25  |  80 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. main() {
  4.     char buf[16];
  5.  
  6.     sprintf(buf, "%.12g", 1.23456);
  7. }
  8.